-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Migration review - DO NOT MERGE] Supplier + proof modules #385
Conversation
} | ||
return nil | ||
} | ||
// TODO_IN_THIS_COMMIT: uncomment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[linter-name (fail-on-found)] reported by reviewdog 🐶
// TODO_IN_THIS_COMMIT: uncomment
|
||
servicehelpers "github.com/pokt-network/poktroll/x/shared/helpers" | ||
sharedtypes "github.com/pokt-network/poktroll/x/shared/types" | ||
) | ||
|
||
const TypeMsgStakeSupplier = "stake_supplier" | ||
|
||
var _ sdk.Msg = (*MsgStakeSupplier)(nil) | ||
var _ sdk.Msg = &MsgStakeSupplier{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[linter-name (fail-on-found)] reported by reviewdog 🐶
var _ sdk.Msg = &MsgStakeSupplier{}
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
const TypeMsgUnstakeSupplier = "unstake_supplier" | ||
|
||
var _ sdk.Msg = (*MsgUnstakeSupplier)(nil) | ||
var _ sdk.Msg = &MsgUnstakeSupplier{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[linter-name (fail-on-found)] reported by reviewdog 🐶
var _ sdk.Msg = &MsgUnstakeSupplier{}
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
var _ sdk.Msg = &MsgUpdateParams{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[linter-name (fail-on-found)] reported by reviewdog 🐶
var _ sdk.Msg = &MsgUpdateParams{}
…take:coin services
cc6b8f9
to
9faa010
Compare
Add
|
Summary
Human Summary
Review branch for the supplier module migration to rollkit/cosmos-sdk v0.50.x (see: migration notion doc).
Once this branch is approved:
git diff origin/migration/supplier-module..origin/migration/review/supplier-module
NOTE:
*.pulsar.go
code.proto/supplier/...
,x/supplier/...
) and dependencies.Issue
Type of change
Select one or more:
Testing
make go_develop_and_test
make test_e2e
devnet-test-e2e
label to the PR. This is VERY expensive, only do it after all the reviews are complete.Sanity Checklist